home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / RCS / ExceptionClass.h,v < prev    next >
Text File  |  1989-05-04  |  908b  |  71 lines

  1. head     3.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    grunwald:3.2; strict;
  6. comment  @ * @;
  7.  
  8.  
  9. 3.2
  10. date     89.02.20.15.34.26;  author grunwald;  state Exp;
  11. branches ;
  12. next     3.1;
  13.  
  14. 3.1
  15. date     88.12.20.13.49.43;  author grunwald;  state Exp;
  16. branches ;
  17. next     1.1;
  18.  
  19. 1.1
  20. date     88.10.30.13.05.41;  author grunwald;  state Exp;
  21. branches ;
  22. next     ;
  23.  
  24.  
  25. desc
  26. @@
  27.  
  28.  
  29. 3.2
  30. log
  31. @Start using Gnu library heaps for schedulers
  32. @
  33. text
  34. @// This may look like C code, but it is really -*- C++ -*-
  35. // 
  36. // Copyright (C) 1988 University of Illinois, Urbana, Illinois
  37. //
  38. // written by Dirk Grunwald (grunwald@@cs.uiuc.edu)
  39. //
  40. #ifndef ExceptionClass_h
  41. #define ExceptionClass_h
  42.  
  43. class ExceptionClass {
  44. public:
  45.     ExceptionClass();
  46.     virtual void handleException();
  47. };
  48.  
  49. inline ExceptionClass::ExceptionClass()
  50. {
  51. }
  52.  
  53. #endif /* ExceptionClass_h */
  54. @
  55.  
  56.  
  57. 3.1
  58. log
  59. @Steay version
  60. @
  61. text
  62. @@
  63.  
  64.  
  65. 1.1
  66. log
  67. @Initial revision
  68. @
  69. text
  70. @@
  71.